 class Program
    {
        static void Main(string[] args)
        {
            
            ConsoleKeyInfo k; //    do
            do { 
                Console.WriteLine("  t, v0  a");
                double v, v0, a;
                v = 0;
                int t, T;
                t = int.Parse(Console.ReadLine());
                v0 = double.Parse(Console.ReadLine());
                a = double.Parse(Console.ReadLine());
                T = 0;

                while (T <= t)
                {
                    v = v0 + a * T;
                    Console.WriteLine($"v={v}");
                    T++;

                }
                Console.WriteLine("i - ESC");
                k = Console.ReadKey();
            }

            while (k.Key != ConsoleKey.Escape);
        }